#awc-house-ads {
    text-align: center;
    margin: 0px 0;
}

.awc-house-ad {
    display: inline-block;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.awc-house-ad:hover {
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.awc-house-ad-image {
    display: block;
    max-width: 100%;
    height: auto;
} 